home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mandrake_MDKSA-2004-008.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  75 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # This plugin text was extracted from Mandrake Linux Security Advisory MDKSA-2004:008
  5. #
  6.  
  7.  
  8. if ( ! defined_func("bn_random") ) exit(0);
  9. if(description)
  10. {
  11.  script_id(14108);
  12.  script_bugtraq_id(9263, 9423);
  13.  script_version ("$Revision: 1.3 $");
  14.  script_cve_id("CAN-2003-0989", "CAN-2003-1029", "CAN-2004-0055", "CAN-2004-0057");
  15.  
  16.  name["english"] = "MDKSA-2004:008: tcpdump";
  17.  
  18.  script_name(english:name["english"]);
  19.  
  20.  desc["english"] = "
  21. The remote host is missing the patch for the advisory MDKSA-2004:008 (tcpdump).
  22.  
  23.  
  24. A number of vulnerabilities were discovered in tcpdump versions prior to 3.8.1
  25. that, if fed a maliciously crafted packet, could be exploited to crash tcpdump
  26. or potentially execute arbitrary code with the privileges of the user running
  27. tcpdump. These vulnerabilities include:
  28. An infinite loop and memory consumption processing L2TP packets (CAN-2003-1029).
  29. Infinite loops in processing ISAKMP packets (CAN-2003-0989, CAN-2004-0057).
  30. A segmentation fault caused by a RADIUS attribute with a large length value
  31. (CAN-2004-0055).
  32. The updated packages are patched to correct these problem.
  33.  
  34.  
  35. Solution : http://www.mandrakesoft.com/security/advisories?name=MDKSA-2004:008
  36. Risk factor : High";
  37.  
  38.  
  39.  
  40.  script_description(english:desc["english"]);
  41.  
  42.  summary["english"] = "Check for the version of the tcpdump package";
  43.  script_summary(english:summary["english"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  48.  family["english"] = "Mandrake Local Security Checks";
  49.  script_family(english:family["english"]);
  50.  
  51.  script_dependencies("ssh_get_info.nasl");
  52.  script_require_keys("Host/Mandrake/rpm-list");
  53.  exit(0);
  54. }
  55.  
  56. include("rpm.inc");
  57. if ( rpm_check( reference:"tcpdump-3.7.2-2.1.91mdk", release:"MDK9.1", yank:"mdk") )
  58. {
  59.  security_hole(0);
  60.  exit(0);
  61. }
  62. if ( rpm_check( reference:"tcpdump-3.7.2-2.1.92mdk", release:"MDK9.2", yank:"mdk") )
  63. {
  64.  security_hole(0);
  65.  exit(0);
  66. }
  67. if (rpm_exists(rpm:"tcpdump-", release:"MDK9.1")
  68.  || rpm_exists(rpm:"tcpdump-", release:"MDK9.2") )
  69. {
  70.  set_kb_item(name:"CAN-2003-0989", value:TRUE);
  71.  set_kb_item(name:"CAN-2003-1029", value:TRUE);
  72.  set_kb_item(name:"CAN-2004-0055", value:TRUE);
  73.  set_kb_item(name:"CAN-2004-0057", value:TRUE);
  74. }
  75.